Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

168
Views
Make the loop run after "return" statement. [React JS]

Aim: I want to render 64 <Square /> elements with <br/> after each 8 elements

Problem: The script outputs just one block and then stops and nothing more happens.

Source Code:

import React from 'react';
import ReactDOM from 'react-dom';
import './style.css';

class Square extends React.Component {
  render() {
    return <div id="block"></div>;
  }
}

class Board extends React.Component {
  renderSquare() {
    for (let i = 1; i <= 64; i++) {
      if (i % 8 == 0) {
        return <br />;
      } else {
        return <Square />;
      }
    }
  }
  render() {
    return <div>{this.renderSquare()}</div>;
  }
}

function Game() {
  return (
    <div id="board">
      <Board />
    </div>
  );
}

ReactDOM.render(<Game />, document.getElementById('root'));
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Using return statement will exit the function after first match, hence in first loop it exits and only displays 1st element, you need to use an array, store the elements in it, and then return the array.

Change your renderSquare method to following

renderSquare() {
    const items = [];
    for (let i = 1; i <= 64; i++) {
        if (i % 8 === 0) {
            items.push(<br />);
        } else {
            items.push(<Square />);
        }
    }
    return items;
}

Update

if you want to print 64 times then use the following

renderSquare() {
    const items = [];
    for (let i = 1; i <= 64; i++) {
        items.push(<Square />);
        if (i % 8 === 0) {
            items.push(<br />);
        }
    }
    return items;
}

Check this https://codesandbox.io/s/peaceful-brattain-pj32le?file=/src/App.js

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!